-
-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(pnpm): url and git package specifiers #1754
Conversation
406038d
to
4d3312e
Compare
TestAll tests were cache hits 191 tests (100.0%) were fully cached saving 52s. Teste2e/bzlmodAll tests were cache hits 4 tests (100.0%) were fully cached saving 467ms. Teste2e/gyp_no_install_scriptAll tests were cache hits 2 tests (100.0%) were fully cached saving 693ms. Teste2e/js_image_ociAll tests were cache hits 1 test (100.0%) was fully cached saving 9s. Teste2e/npm_link_packageAll tests were cache hits 2 tests (100.0%) were fully cached saving 1s. Teste2e/npm_link_package-esmAll tests were cache hits 2 tests (100.0%) were fully cached saving 923ms. Teste2e/npm_translate_lockAll tests were cache hits 1 test (100.0%) was fully cached saving 73ms. Teste2e/npm_translate_lock_emptyAll tests were cache hits 1 test (100.0%) was fully cached saving 73ms. Teste2e/npm_translate_lock_multiAll tests were cache hits 2 tests (100.0%) were fully cached saving 271ms. Teste2e/npm_translate_lock_partial_cloneAll tests were cache hits 1 test (100.0%) was fully cached saving 117ms. Teste2e/npm_translate_lock_subdir_patchAll tests were cache hits 1 test (100.0%) was fully cached saving 248ms. Teste2e/npm_translate_package_lockAll tests were cache hits 1 test (100.0%) was fully cached saving 73ms. Teste2e/npm_translate_yarn_lockAll tests were cache hits 1 test (100.0%) was fully cached saving 73ms. Teste2e/package_json_moduleAll tests were cache hits 1 test (100.0%) was fully cached saving 520ms. Teste2e/pnpm_lockfilesFailed tests (3)//v54:repos_0_test [k8-fastbuild]536ms //v60:repos_0_test [k8-fastbuild]686ms //v61:repos_0_test [k8-fastbuild]529ms 💡 To reproduce the test failures, run
Teste2e/pnpm_workspaceAll tests were cache hits 8 tests (100.0%) were fully cached saving 3s. Teste2e/pnpm_workspace_rerootedAll tests were cache hits 6 tests (100.0%) were fully cached saving 2s. Teste2e/repo_mappingAll tests were cache hits 2 tests (100.0%) were fully cached saving 451ms. Teste2e/rules_fooAll tests were cache hits 2 tests (100.0%) were fully cached saving 605ms. Teste2e/vendored_nodeAll tests were cache hits 1 test (100.0%) was fully cached saving 187ms. Buildifier Format |
9acbca6
to
5695edf
Compare
b435d45
to
9c7f5b9
Compare
1088489
to
1750891
Compare
1750891
to
eebcde1
Compare
@@ -3,6 +3,9 @@ | |||
"private": true, | |||
"dependencies": { | |||
"@aspect-test/a": "^5.0.2", | |||
"debug": "ngokevin/debug#9742c5f383a6f8046241920156236ade8ec30d53", | |||
"hello": "https://gitpkg.vercel.app/EqualMa/gitpkg-hello/packages/hello", | |||
"jsonify": "https://github.com/aspect-build/test-packages/releases/download/0.0.0/@foo-jsonify-0.0.0.tgz", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are there more from npm/private/test/package.json
that should be pulled into e2e/pnpm_lockfiles
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah there probably are. I need to get this PR actually working before I add much more though.
The debug
and hello
ones are unique cases (odd git syntax, https syntax). The jsonify
one is also plain http but has a more interesting URL which requires escaping.
What was originally intended to be a prefactor for this has turned into the fix: #1765 |
Ref #1753
Changes are visible to end-users: no
Test plan